Skip to main content
Version: 4.55.1

Nodes > Control Flow

Break

Breaks loop execution when executed within the body of any loop based node. For example: For, Foreach, and While nodes. Execution will continue as if all loops have completed.

Continue

Continues to the next loop when executed within the body of any loop based node. For example: For, Foreach, and While nodes. Execution will continue on the next loop as if the current loop had completed.

For

Executes the Body execution port loopCount times, increasing Number each time. Number returns 0 on the first iteration, and increases by 1 on each iteration until it reaches loopCount-1 on the final loop. After all loops are completed, the Then port is executed.

Foreach

Executes the Body execution port once for each element of the array, providing the current element in the Object port. After all items have been iterated through, the Then port is executed.

If

Executes the True port if condition is true, and the False port if condition is false.

Sequence

Executes each of the output ports in order. Useful for organizing a long sequence of nodes into more manageable sections.

While

Continues to execute the Body port as long as condition is true. Once condition is false, the loop ends and the Then port is executed.

Was this page helpful?
Yes
No